home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / jovept2.arc / SCREEN.H < prev    next >
Text File  |  1985-05-30  |  640b  |  31 lines

  1. /* screen.h */
  2.  
  3.  
  4. struct scrimage {
  5.     int    StartCol,    /* Physical column start */
  6.         Sflags;        /* DIRTY or MODELINE */
  7.     LINE    *Line;        /* Which buffer line */
  8.     WINDOW    *Window;    /* Window that contains this line */
  9. };
  10.  
  11. #ifdef SCREEN
  12.  
  13. int RingBell;
  14.  
  15. int CapLine, CapCol;
  16.  
  17. struct scrimage
  18.     *nimage,    /* What lines should be where after redisplay */
  19.     *oimage;    /* What line are after redisplay */
  20.  
  21.  
  22. #else
  23.  
  24. extern int CapLine, CapCol;
  25. extern int RingBell;
  26. extern struct scrimage *nimage, *oimage;
  27.  
  28. #endif
  29.  
  30. /* end */
  31.